lineplot_module(
label_mod = "Lineplot - Mean",
dataname = "ADOE",
vars = choices_selected(
choices = variable_choices(my_data[["ADOE"]], c("AVAL", "CHG")),
selected = c("AVAL")
),
parameter = choices_selected(
choices = value_choices(my_data[["ADOE"]],"PARAMCD","PARAM"),
selected = "GAAREA"
),
xtime = choices_selected(
choices = variable_choices(my_data[["ADOE"]], c("AVISIT")),
selected = "AVISIT", fixed = TRUE
),
splitby = choices_selected(
variable_choices(my_data[["ADSL"]], c("TRT01P")),
selected = "TRT01P", fixed = TRUE
),
subgroup = choices_selected(
choices = variable_choices(my_data[["ADSL"]],
c("SEX", "AGEGR2", "REGION1", "STRAT1", "STRAT2", "SUBGR1", "SUBGR2",
"SUBGR3", "SUBGR4", "SUBGR5", "SUBGR6", "SUBGR7", "SUBGR8")),
selected = NULL
)
)